| Name | Description | |
|---|---|---|
| TAU |
| Name | Description | |
|---|---|---|
|
|
TAU |
| Name | Description | |
|---|---|---|
|
circleArea | Calculates the area of the circle with the specified radius. |
|
circleCircumference | Calculates the circumference around a circle with the specified radius. |
|
circleRadius | Calculates the radius of a circle with the specified area. |
|
circleRadiusFromCircumference | Calculates the radius of a circle with the specified circumference. |
|
constrain | Returns the closest value to value such that it is in the range (min, max). |
|
decimalPlaces | Determines the number of fractional digits present in the specified value. |
|
degreesToRadians | Converts an angle in degrees to radians. |
|
finite | Returns the finite numbers out of the values passed. |
|
gcd | Calculates the greatest positive common divisor of a and b. |
|
hypotenuse | Returns the length of the hypotenuse of a right angle triangle given the length of the opposite and adjacent sides. |
|
isFiniteNumber | Gets a value indicating whether the specified value is a finite number. |
|
lerp | Returns the value that corresponds to the linear interpolation parameter t. |
|
log | Returns the logarithm of x in base b. |
|
maxFinite | Returns the maximum finite number out of all values passed. |
|
maxNonNull | Returns the largest quantity from that is not null, or null if there is no such value. |
|
minFinite | Returns the minimum finite number out of all values passed. |
|
minNonNull | Returns the largest quantity from that is not null, or null if there is no such value. |
|
numericBound | Bound the specified value to the specified min and max. |
|
radiansToDegrees | Converts an angle in radians to degrees. |
|
reverseLerp |
Returns the linear interpolation parameter |
|
round | Rounds a double-precision floating-point value to a specified number of fractional digits. |
|
roundAwayFromZero | Rounds a value. Half values (i.e. when the fraction of value is 0.5) are rounded to the nearest number with greater magnitude. |
|
sign | Returns an integer that indicates the sign of a number. |
|
signNonZero | Returns an integer that indicates the sign of a number. |
|
smallestNonZero | Returns the value closest to zero other than zero in the specified values. |
|
triangleArea | Returns the area of the triangle whose sides are a, b, and c. |